home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 4 / The 640 Meg Shareware Studio CD-ROM Volume IV (Data Express)(1994).ISO / clang / cujaug93.zip / 1108029A < prev    next >
Text File  |  1993-05-05  |  345b  |  15 lines

  1. enter with vertex CurrentPoint
  2. IF first point THEN 
  3.     store CurrentPoint as FirstPoint for later use
  4. ELSEIF the line from LastPoint to CurrentPoint
  5.         intersects edge THEN
  6.     output the intersection point
  7. ENDIF
  8. IF CurrentPoint is on visible side of edge THEN
  9.     output CurrentPoint
  10. ENDIF
  11. store CurrentPoint as LastPoint for later use
  12.  
  13.  
  14.  
  15.